home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / swingall.jar / javax / swing / text / MutableAttributeSet.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-07-15  |  465 b   |  18 lines

  1. package javax.swing.text;
  2.  
  3. import java.util.Enumeration;
  4.  
  5. public interface MutableAttributeSet extends AttributeSet {
  6.    void addAttribute(Object var1, Object var2);
  7.  
  8.    void addAttributes(AttributeSet var1);
  9.  
  10.    void removeAttribute(Object var1);
  11.  
  12.    void removeAttributes(Enumeration var1);
  13.  
  14.    void removeAttributes(AttributeSet var1);
  15.  
  16.    void setResolveParent(AttributeSet var1);
  17. }
  18.